home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Information / THINK C Digest / 1996 / 96-04 < prev    next >
Text File  |  1996-06-24  |  70KB  |  1,421 lines

  1. Archive THINK-C/MESSAGES, file 96-04.
  2. Part 1/1, total size 69408 bytes:
  3.  
  4. ------------------------------ Cut here ------------------------------
  5. >From D.Thomas@vthrc.uq.edu.au Mon Apr  1 03:32:28 PST 1996
  6. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id DAA18073 for <think-c@rdatasys.com>; Mon, 1 Apr 1996 03:32:23 -0800 (PST)
  7. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id DAA28026 for <think-c@rdatasys.com>; Mon, 1 Apr 1996 03:32:21 -0800
  8. Received: from xroads.vthrc.uq.edu.au(130.102.4.16) by lionfish.rdatasys.com via smap (V1.3)
  9.         id sma028018; Mon Apr  1 03:32:10 1996
  10. Received: (from fwtk@localhost) by xroads.vthrc.uq.edu.au (8.7.3/8.7.3) id VAA19765; Mon, 1 Apr 1996 21:30:24 +1000 (EST)
  11. Received: from arundel.vthrc.uq.edu.au(130.102.4.21) by xroads.vthrc.uq.edu.au via smap (V1.3)
  12.         id sma019762; Mon Apr  1 21:30:21 1996
  13. Message-Id: <v02140b00ad854043bb5e@[130.102.4.21]>
  14. Mime-Version: 1.0
  15. Content-Type: text/plain; charset=us-ascii
  16. Date: Mon, 1 Apr 1996 21:30:58 +1000
  17. To: rtt@synapse.net, think-c@rdatasys.com
  18. From: D.Thomas@vthrc.uq.edu.au (Danny Thomas)
  19. Subject: Re: printf problem
  20.  
  21. >...
  22. >The first line is the one that has given me a problem, in that I got
  23. >garbage on the console. I then typecast the sizeof as below and things
  24. >come out the correct way.
  25. >  printf("| %-*.*s |\n", (int)sizeof(name), (int)sizeof(name), name);
  26. >
  27. >It seems that ANSI expects sizeof to an int, and Think C has it defined
  28. >as unsigned long.
  29.  
  30. No, ANSI defines a new type called size_t capable of holding the size of
  31. any object in memory. Depending on the memory model it could be unsigned
  32. int, unsigned long, or maybe even something else.
  33.  
  34. The * precision specifier in the format string consumes an argument of type
  35. int. Unfortunately few compilers check for the correspondence between the
  36. arguments described in the format string and the supplied arguments so
  37. there's no possibility for prototype-like automatic conversions.
  38.  
  39. An explicit int cast is needed - certainly for portability. And a macro is
  40. no good because in nearly all other uses, sizeof must be left as size_t, at
  41. least until any conversions required by context are performed.
  42.  
  43. cheers,
  44. Danny Thomas  <D.Thomas@vthrc.uq.edu.au>
  45.  
  46.  
  47. >From phils@bedford.symantec.com Mon Apr  1 06:35:36 PST 1996
  48. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id GAA29049 for <think-c@rdatasys.com>; Mon, 1 Apr 1996 06:35:35 -0800 (PST)
  49. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id GAA04988 for <think-c@rdatasys.com>; Mon, 1 Apr 1996 06:35:34 -0800
  50. Received: from bedford.symantec.com(155.64.60.100) by lionfish.rdatasys.com via smap (V1.3)
  51.         id sma004986; Mon Apr  1 06:35:27 1996
  52. Received: from [155.64.159.96] by bedford.symantec.com
  53.  with SMTP (Apple Internet Mail Server 1.0); Mon, 1 Apr 1996 09:32:34 -0500
  54. Subject: Re: printf problem
  55. Date: Mon, 1 Apr 96 09:35:40 -0500
  56. From: Phil Shapiro <phils@bedford.symantec.com>
  57. To: <rtt@synapse.net>, "Multiple recipients of list" <think-c@rdatasys.com>
  58. Mime-Version: 1.0
  59. Content-Type: text/plain; charset="US-ASCII"
  60. Message-ID: <1383771342-57210718@bedford.symantec.com>
  61.  
  62. >Macintosh using Think C V7.0.3.
  63. >I have encountered an issue which probably has a graceful solution, but I
  64. >have yet to find it.
  65. >
  66. >        printf("| %-*.*s |\n", sizeof(name), sizeof(name), name);
  67. >
  68. >The first line is the one that has given me a problem, in that I got
  69. >garbage on the console. I then typecast the sizeof as below and things come
  70. >out the correct way.
  71. >        printf("| %-*.*s |\n", (int)sizeof(name), (int)sizeof(name), name);
  72. >
  73. >It seems that ANSI expects sizeof to an int, and Think C has it defined as
  74. >unsigned long.
  75. >
  76. >What is the solution here? More specifically, is there an option or a
  77. >pre-processor flag that I should set to make Think C treat sieof as an int?
  78. >I definately would appreciate some guidance if possible.
  79.  
  80. One possible "solution" that might work is to turn on 4 byte ints in 
  81. THINK C. This sidesteps the actual problem, which is passing sizeof to 
  82. printf() without casting, but it will most likely make THINK C behave 
  83. similar to whatever other compiler you happen to be using.
  84.  
  85. If you do turn this option on, be sure to rebuild the ANSI library with 
  86. the same setting. See "Building the ANSI Library" in the online reference 
  87. if you're not sure how to rebuild ANSI.
  88.  
  89. -phil
  90. >From brennan@skivs.ski.org Mon Apr  1 15:49:57 PST 1996
  91. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id PAA02993 for <think-c@rdatasys.com>; Mon, 1 Apr 1996 15:49:56 -0800 (PST)
  92. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id PAA23787 for <think-c@rdatasys.com>; Mon, 1 Apr 1996 15:49:55 -0800
  93. Received: from skivs.ski.org(192.207.85.11) by lionfish.rdatasys.com via smap (V1.3)
  94.         id sma023785; Mon Apr  1 15:49:33 1996
  95. Received: by skivs.ski.org (4.1/SMI-4.1)
  96.         id AA18804; Mon, 1 Apr 96 15:50:31 PST
  97. Date: Mon, 1 Apr 1996 15:50:30 -0800 (PST)
  98. From: Brennan McBride <brennan@skivs.ski.org>
  99. To: think-c@rdatasys.com
  100. Subject: Any help?
  101. Message-Id: <Pine.SUN.3.91.960401153722.18270A-100000@skivs.ski.org>
  102. Mime-Version: 1.0
  103. Content-Type: TEXT/PLAIN; charset=US-ASCII
  104.  
  105.  
  106. I occasionally get a strange behavior. I open a project. About half a
  107. minute later, before I've done anything, the computer beeps and closes C. 
  108. No error msg. 
  109. At other times, it has hung (keyboard and mouse button) while I was
  110. editting a source file - not sure if it was the same error. 
  111.  
  112. I haven't been able to work out why this is happening. It happens once a 
  113. week or so, and doesn't seem related to previous history.
  114.  
  115. This AM it occurred 1st thing, before I'd done anything else. I had to
  116. recreate my project to get over it.
  117.  
  118. Can anyone suggest what might be happening / how to stop it?
  119.  
  120. (I have C 8.0.3 on a 6100/60 PPC.)
  121.  
  122. >From nicola.du.plessis@uni.durban.ac.za, elisabeth@vax7.vax.joburg.org.za, Sat Apr  6 16:42:39 PST 1996
  123. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id QAA24042 for <think-c@rdatasys.com>; Sat, 6 Apr 1996 16:42:20 -0800 (PST)
  124. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id QAA21203 for <think-c@rdatasys.com>; Sat, 6 Apr 1996 16:42:18 -0800
  125. Received: from paris.ics.uci.edu(128.195.1.50) by lionfish.rdatasys.com via smap (V1.3)
  126.         id sma021193; Sat Apr  6 16:41:49 1996
  127. Received: from ix.ix.netcom.com by paris.ics.uci.edu id aa04923;
  128.           6 Apr 96 16:32 PST
  129. Received: from [128.227.163.147] by ix.ix.netcom.com (8.6.13/SMI-4.1/Netcom)
  130.         id PAA01483; Sat, 6 Apr 1996 15:38:08 -0800
  131. X-Sender: nicola.du.plessis@uni.durban.ac.za (Unverified)
  132. Message-Id: <v0153051fad89e045689c@[128.227.163.147]>
  133. Mime-Version: 1.0
  134. Content-Type: text/plain; charset="us-ascii"
  135. Reply-To: please.reply.via.fax@or.smail.to.fax.number.or.smail.address.shown.below.thank.you
  136. Approved: moderator
  137. X-Priority: 2 (High)
  138. Date: Fri, 5 Apr 1996 15:27:46 +0200
  139. To: nicola.du.plessis@uni.durban.ac.za
  140. From: nicola.du.plessis@uni.durban.ac.za, elisabeth@vax7.vax.joburg.org.za,
  141.         chiu@capeto, ronnie@jhft.co.za, ellen@tci.co.za,
  142.         mikki@uni.transvaal.ac.za, chen@b, chir@natal.co.za, wrend@rfg1.co.za,
  143.         susans@uni.swaziland.ac.a, gregor@southampton.org.za,
  144.         ellen@plymouth.ac.za, gfos@fresno.co.za, trens@u,
  145.         jimt@uni.london.ac.za, fharile@plymouth.org.za, relson@childs,
  146.         nels@hall.co.za, sarap@ruv4.co.za,
  147.         "Nicola\
  148.  du Plessis, President of the South Africa Association of University\
  149.  Students and the Board of Directors of the South Africa Association of\
  150.  University Students" <gspelling@earthlite.co.za>
  151. MMDF-Warning:  Parse error in original version of preceding line at paris.ics.uci.edu
  152. Subject: ---> FREE 1 yr. Magazine Sub sent worldwide- 290+ Popular USA Titles
  153.  
  154.  -----> NOTE:   Please first read my note which appears below the "Request
  155. for more info Form."  Then, to get more info, just fill out the "Request
  156. for More Info" form completely and *FAX* or *SMAIL* it back to the company.
  157. You will get a quick reply via email within 1 business day of receipt of
  158. the info request form below.
  159.  
  160. IMPORTANT NOTICE FOR THOSE FAXING IN THEIR REPLY:  Please make sure you
  161. return *only* the below form and *no part* of this message other than the
  162. actual form below.  If you do not know how to cut and paste the below form
  163. onto a fresh clean blank page for faxing, then you may re-type the below
  164. form, as long as you copy it line for line *exactly.*  This is necessary in
  165. order for them to be able to process the tremendous number of replies that
  166. they get daily.
  167.  
  168. Your fax goes directly onto their 4.2 gigabyte computer hard drive, not
  169. paper, and all incoming fax calls are set-up to be *auto-terminated* and/or
  170. *auto-deleted* from the incoming queue of faxes to be read, if your fax:
  171.  
  172. 1. has a cover page;
  173. 2. is more than one page
  174. 3. is sent more than one time
  175. 4. does not begin with the "cut here/begin" line from the below form
  176. 5. does not end with the "cut here/end" line from the below form.
  177. 6. has any handwritten info. on it (info must must be filled out *only*
  178.     with your computer keyboard or typewriter keyboard).  This last
  179.     provision re:  no handwriting on the form applies to requests sent in
  180.     via smail also.
  181.  
  182. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  183. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  184. NOTE:  Their fax line is open 24 hrs. per day / 7 days per week.   However,
  185. if you have trouble getting through due to the high volume of overseas
  186. faxes coming in during the early morning and late night hours, please note
  187. that the best time to get through to their fax is Monday-Friday, 9 am - 5
  188. pm EST (New York Time).  If you have trouble getting through to their fax,
  189. or do not have a fax machine at work or at home, just drop the below form
  190. to them via smail (airmail or first class mail).
  191. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  192. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  193.  
  194.  
  195.  
  196. *------------cut here/begin-------------------------------------------*
  197. REQUEST FOR MORE INFO:  please return *only* this section (with no cover
  198. page) via 1-page fax to:
  199.                               718-967-1550 in the USA
  200.  
  201. or via smail (first class mail or airmail) to:
  202.                                          Magazine Club Inquiry Center
  203.                                          Att. FREE Catalogue-by-email Dept.
  204.                                          PO Box 990
  205.                                          Staten Island NY  10312-0990
  206.  
  207. Sorry, but incomplete forms *will not* be acknowledged.  If you do not
  208. have an email address, or access to one, they will not be able to help you
  209. until you do have one.  If you saw this message, then you should have one.  :)
  210.  
  211. ---> SORRY, BUT NO HANDWRITTEN FORMS WILL BE ACKNOWLEDGED.
  212.         MUST BE TYPED-OUT ON YOUR COMPUTER OR TYPEWRITER. <---
  213.  
  214. Name:
  215. Internet email address:
  216. Smail home address:
  217. City-State-Zip:
  218. Country:
  219. Work Tel. #:
  220. Work Fax #:
  221. Home Tel. #:
  222. Home Fax #:
  223.  
  224. How did you hear about us (name of person who referred you or the area of
  225. the internet that you saw us mentioned in):  Referral by:  Nicola du Plessis.
  226. 040696-l
  227.  
  228. Name of USA mags you currently get on the newsstand or in the store:
  229.  
  230. Name of USA mags you currently get on the newsstand or in the store:
  231.  
  232. Name of USA mags you currently get on a subscription basis, through the mail:
  233.  
  234. Name of USA mags you would like price quotes on when we call you:
  235.  
  236. Catalogue format desired (list "1," "2," "3" or "4"):
  237.  
  238. *------------cut here/end--------------------------------------------*
  239.  
  240.  
  241. Catalogue Format Options:
  242. 1.  19-Part email- can be read by EVERYONE (~525 K Total).
  243. 2.  For more advanced computer users:  attached text file ~525K - you
  244.      must know how to download an attached text file and then be able to
  245.      open it with your word processor.  If in doubt, don't ask for this
  246.      version.  This isn't for internet *newbies.* Better to order option 1
  247.      and spend a few minutes pasting them into one whole text document
  248.      with your word processor, than to waste hours trying to figure how
  249.      to deal with this option.
  250. 3.  For more advanced Macintosh computer users: compressed attached
  251.      text file, created with a Stuffit(tm) self-extracting archive (.sea),
  252.       ~133K.  Can be decompressed by any Macintosh computer user; no
  253.      special expansion software or knowledge of Stuffit (tm) needed.  You
  254.      just double-click on the file icon and it automatically expands
  255.      (unstuffs). This is for more advanced mac computer users only, as
  256.      you still have to know how to deal with an attached file.  It will cut
  257.      your download time by 75%.   Expands out to the same ~525K file in
  258.      option #2.  See option #2 for more info on what you will need to be
  259.      able to do.
  260. 4.  For expert computer users: compressed attached text file, created with
  261.      Stuffit(tm),  ~114K.  Can be decompressed by any computer user who
  262.      has expansion software to decompress (expand) Stuffit(tm) (.sit) files.
  263.      This is for more advanced computer users only and will cut your
  264.      download time by 78%.   Expands out to the same ~525K file in option
  265.      #2.  See option #2 for more info on what you will need to be able to do.
  266.  
  267.  
  268.  
  269. Hi fellow 'netters,
  270.  
  271. My name is Nicola du Plessis and I recently started using a magazine
  272. subscription club in the USA that has a FREE 1 yr. magazine subscription
  273. deal with your first paid order- and I have been very pleased with them.
  274. They have over 1,500 different USA titles that they can ship to any country
  275. on a subscription basis.   As for computer magazines from the USA, they
  276. more of a selection than I ever knew even existed.  They have magazines for
  277. most every area of interest in their list of 1,500 titles.
  278.  
  279. Within the USA, for their USA members, they are cheaper than all their
  280. competitors and even the publishers themselves.  This is their price
  281. guarantee.
  282.  
  283. Overseas, on the average, they are generally around one-fourth to one-half
  284. of what the newsstands overseas charge locally for USA magazines.  On some
  285. titles they are as little as one-tenth of what the newsstands charge.  They
  286. feel that mgazines should not be a luxury overseas.   In the USA, people
  287. buy magazines and then toss them after reading them for just a few minutes
  288. or hours.  They are so cheap in the USA!   Well, this company would like to
  289. make it the same way for their overseas members.  They are also cheaper
  290. than all their competitors in the USA and overseas, including the
  291. publishers themselves!   This is their price guarantee.  Around one-half
  292. their business comes from overseas, so they are very patient with new
  293. members who only speak limited English as a 2nd language.
  294.  
  295. Their prices are so cheap because they deal direct with each publisher and
  296. cut-out all the middlemen.
  297.  
  298. They will send you their DELUXE EMAIL CATALOGUE (around 525K-big and
  299. juicey) !)...if you completely fill out the form above.  It has lists of
  300. all the freebies, lists of all the titles they sell, titles broken down by
  301. categories and detailed descriptions on nearly 1,200 of the titles that
  302. they sell.
  303.  
  304. Please do not email me as I am just a happy customer and a *busy* student.
  305. I don't have time to even complete my thesis in time, let alone run my
  306. part-time software business!  Please fill out the above form and carefully
  307. follow the intructions above to get it to them via fax or smail.
  308.  
  309. They guarantee to beat all their competitors' prices. Sometimes they are
  310. less than half of the next best deal I have been able to find and other
  311. times, just a little cheaper - but I have never found a lower rate yet.
  312. They assured me that if I ever do, they will beat it.
  313.  
  314. They have been very helpful and helped me with all my address changes as I
  315. haved moved from one country to another.
  316.  
  317. They have a deal where you can get a free 1 yr. sub to a new magazine from
  318. a special list of over 295 popular titles published in the USA.   They will
  319. give you this free 1 yr. sub when you place your first paid order with them
  320. to a renewal or new subscription to any of the over 1,500 different popular
  321. USA titles they sell.
  322.  
  323. They can arrange delivery to virtually any country and I think they have
  324. clients in around 45 or 46 countries now.  Outside the USA there is a
  325. charge for FPH (foreign postage and handling) (on both paid and freebie
  326. subs) that varies from magazine to magazine.  I have found their staff to
  327. be very friendly and courteous.  They even helped me with an address change
  328. when I moved from one country to another.
  329.  
  330. The owner thinks of his service as a "club" and his clients as "members"
  331. (even though there is no extra fee to become a member - your first purchase
  332. automatically makes you a member) and he is real picky about who he accepts
  333. as a new member.   When he sets you up as a new member, he himself calls
  334. you personally on the phone to explain how he works his deal, or sometimes
  335. he has one of his assistants call.  He is kind of quirky sometimes - he
  336. insists on setting up new members by phone so he can say hi to everyone (I
  337. sure wouldn't want to have his phone bills!),  but you can place future
  338. orders (after your first order) via E-mail.
  339.  
  340. He has some really friendly young ladies working for him, who seem to know
  341. just as much as he does about this magazine stuff.  If you live overseas,
  342. he will even call you there, as long as you are interested, but I think he
  343. still makes all his overseas calls on the weekends, I guess cause the long
  344. distance rates are cheaper then.
  345.  
  346. He only likes to take new members from referrals from satisfied existing
  347. members and he does virtually no advertising.  When I got set-up, they had
  348. a 2-3 week waiting list for new members to be called back so that they
  349. could join up. (Once you are an existing member, they help you immediately
  350. when you call. )  I think they are able to get back to prospective new
  351. members  the same day or within a few days now, as they have increased
  352. their staff.  I am not sure about this.........but if you email the above
  353. form to them, that is the way to get started!
  354.  
  355. They will send you their DELUXE EMAIL CATALOGUE (around 525K-big and
  356. juicey) !)...if you completely fill out the form above.  It has lists of
  357. all the freebies, lists of all the titles they sell, titles broken down by
  358. categories and detailed descriptions on nearly 1,200 of the titles that
  359. they sell.
  360.  
  361. They then send you email  that outlines how his club works and the list of
  362. free choices that you can choose from, as well as the entire list of what
  363. he sells;  and then they will give you a quick (3-5 minute) friendly,
  364. no-pressure no-obligation call to explain everything to you personally and
  365. answer all your questions.
  366.  
  367. Once you get in, you'll love them. I do.
  368.  
  369.  
  370. Sincerely,
  371.  
  372. Nicola du Plessis
  373.  
  374.  
  375. >From grant7@tribeca.ios.com Sat Apr  6 20:09:35 PST 1996
  376. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id UAA01068 for <think-c@rdatasys.com>; Sat, 6 Apr 1996 20:09:34 -0800 (PST)
  377. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id UAA28286 for <think-c@rdatasys.com>; Sat, 6 Apr 1996 20:09:32 -0800
  378. Received: from tribeca.ios.com(198.4.75.48) by lionfish.rdatasys.com via smap (V1.3)
  379.         id sma028276; Sat Apr  6 20:09:03 1996
  380. Received: (from grant7@localhost) by tribeca.ios.com (8.6.11/8.6.9) id XAA01300; Sat, 6 Apr 1996 23:07:49 -0500
  381. Date: Sat, 6 Apr 1996 23:07:48 -0500 (EST)
  382. From: Grant Rauscher <grant7@tribeca.ios.com>
  383. To: think-c@rdatasys.com
  384. Subject: Toolbox calls using Think C
  385. Message-ID: <Pine.BSD.3.91.960406225334.333A-100000@tribeca.ios.com>
  386. MIME-Version: 1.0
  387. Content-Type: TEXT/PLAIN; charset=US-ASCII
  388.  
  389.  
  390. Using Think C's MacTraps, toolbox calls for Offscreen Graphics Worlds
  391. {GrafPtr, NewGWorld(...)} and for Process Manager calls such as Get
  392. ProcessSerialNum (I'm not looking at the code) give link errors.  I'm
  393. using System 7, shouldn't I be able to use the toolbox calls?  Do I need a
  394. different MacTraps file?  (MacTraps2 doesn't help.)
  395.  
  396. Respond to :  grant7@tribeca.ios.com
  397.  
  398.                                                 - Grant
  399.  
  400. >From siegel@barebones.com Sat Apr  6 20:39:50 PST 1996
  401. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id UAA02087 for <think-c@rdatasys.com>; Sat, 6 Apr 1996 20:39:50 -0800 (PST)
  402. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id UAA29494 for <think-c@rdatasys.com>; Sat, 6 Apr 1996 20:39:48 -0800
  403. Received: from m3.barebones.com(204.107.232.34) by lionfish.rdatasys.com via smap (V1.3)
  404.         id sma029380; Sat Apr  6 20:39:26 1996
  405. Received: from 199.3.129.80 (doofus.tiac.net [199.3.129.80]) by m3.barebones.com (8.7.3/8.7.3) with SMTP id XAA27055 for <think-c@rdatasys.com>; Sat, 6 Apr 1996 23:40:01 -0500 (EST)
  406. Message-ID: <n1383288390.69628@Rich Siegel>
  407. Date: 6 Apr 1996 23:41:26 -0500
  408. From: "Rich Siegel" <siegel@barebones.com>
  409. Subject: Re: Toolbox calls using Think C
  410. To: "Multiple recipients of list" <think-c@rdatasys.com>
  411. X-Mailer: Mail*Link PT/Internet 1.6.0
  412.  
  413. > Using Think C's MacTraps, toolbox calls for Offscreen Graphics Worlds
  414. > {GrafPtr, NewGWorld(...)} and for Process Manager calls such as Get
  415. > ProcessSerialNum (I'm not looking at the code) give link errors.  I'm
  416. > using System 7, shouldn't I be able to use the toolbox calls?  Do I need a
  417. > different MacTraps file?  (MacTraps2 doesn't help.)
  418.  
  419. All of those calls are trap-based, and don't generally require any glue.
  420. However, you need to compile with <MacHeaders> or the relevant Toolbox
  421. headers included. If you haven't already, try turning on strict
  422. prototype enforcement with prototypes required; you'll probably start
  423. getting compile errors for the traps that you're using and getting link
  424. errors for.
  425.  
  426. Regards,
  427.  
  428. R.
  429.  
  430. -- 
  431. Rich Siegel                          Evil Commercial Text Editor Guru
  432. Bare Bones Software, Inc.                        siegel@barebones.com
  433.  
  434.  
  435. >From JohnChen00@aol.com Mon Apr  8 01:57:09 PDT 1996
  436. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id BAA28723 for <think-c@rdatasys.com>; Mon, 8 Apr 1996 01:57:08 -0700 (PDT)
  437. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id BAA21432 for <think-c@rdatasys.com>; Mon, 8 Apr 1996 01:57:06 -0700
  438. Received: from paris.ics.uci.edu(128.195.1.50) by lionfish.rdatasys.com via smap (V1.3)
  439.         id sma021422; Mon Apr  8 01:56:58 1996
  440. Received: from mail04.mail.aol.com by paris.ics.uci.edu id aa12086;
  441.           8 Apr 96 1:54 PDT
  442. Received: by mail04.mail.aol.com (8.6.12/8.6.12) id DAA02643; Mon, 8 Apr 1996 03:37:28 -0400
  443. Date: Mon, 8 Apr 1996 03:37:28 -0400
  444. From: JohnChen00@aol.com
  445. Message-ID: <960408033728_266461532@mail04>
  446. Subject: Interesting Free Offer........
  447. Apparently-To: <think-c@rdatasys.com>
  448.  
  449.  
  450. ---------------------
  451. Forwarded message:
  452. Subj:    Interesting Free Offer........
  453. Date:    96-04-08 02:45:01 EDT
  454. From:    JohnChen00
  455.  
  456. To:      announcement.service@r1.f62.n8669.z303.fidonet.org
  457.  
  458. -----> NOTE:   Please first read my note which appears below the "Request for
  459. more info Form."  Then, to get more info, just fill out the "Request for More
  460. Info" form completely and *FAX* or *SMAIL* it back to the company.  You will
  461. get a quick reply via email within 1 business day of receipt of the info
  462. request form below. 
  463.  
  464. IMPORTANT NOTICE FOR THOSE FAXING IN THEIR REPLY:  Please make sure you
  465. return *only* the below form and *no part* of this message other than the
  466. actual form below.  If you do not know how to cut and paste the below form
  467. onto a fresh clean blank page for faxing, then you may re-type the below
  468. form, as long as you copy it line for line *exactly.*  This is necessary in
  469. order for them to be able to process the tremendous number of replies that
  470. they get daily.
  471.  
  472. Your fax goes directly onto their 4.2 gigabyte computer hard drive, not
  473. paper, and all incoming fax calls are set-up to be *auto-terminated* and/or
  474. *auto-deleted* from the incoming queue of faxes to be read, if your fax:
  475.  
  476. 1. has a cover page;  
  477. 2. is more than one page
  478. 3. is sent more than one time
  479. 4. does not begin with the "cut here/begin" line from the below form
  480. 5. does not end with the "cut here/end" line from the below form.
  481. 6. has any handwritten info. on it (info must must be filled out *only* 
  482.     with your computer keyboard or typewriter keyboard).  This last 
  483.     provision re:  no handwriting on the form applies to requests sent in 
  484.     via smail also.
  485.  
  486. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  487. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  488. NOTE:  Their fax line is open 24 hrs. per day / 7 days per week.   However,
  489.  if you have trouble getting through due to the high volume of overseas faxes
  490. coming in during the early morning and late night hours, please note that the
  491. best time to get through to their fax is Monday-Friday, 9 am - 5 pm EST (New
  492. York Time).  If you have trouble getting through to their fax, or do not have
  493. a fax machine at work or at home, just drop the below form to them via smail
  494. (airmail or first class mail).
  495. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  496. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  497.  
  498.  
  499.  
  500. *------------cut here/begin-------------------------------------------*
  501. REQUEST FOR MORE INFO:  please return *only* this section (with no cover
  502. page) via 1-page fax to:
  503.                               718-967-1550 in the USA
  504.  
  505. or via smail (first class mail or airmail) to:    
  506.                                          Magazine Club Inquiry Center
  507.                                          Att. FREE Catalogue-by-email Dept.
  508.                                          PO Box 990
  509.                                          Staten Island NY  10312-0990
  510.  
  511. Sorry, but incomplete forms *will not* be acknowledged.  If you do not
  512. have an email address, or access to one, they will not be able to help you
  513. until you do have one.  If you saw this message, then you should have one.
  514.  :)
  515.  
  516. ---> SORRY, BUT NO HANDWRITTEN FORMS WILL BE ACKNOWLEDGED.  
  517.         MUST BE TYPED-OUT ON YOUR COMPUTER OR TYPEWRITER. <---
  518.  
  519. Name:
  520. Internet email address:
  521. Smail home address:
  522. City-State-Zip:
  523. Country:
  524. Work Tel. #:
  525. Work Fax #:
  526. Home Tel. #:
  527. Home Fax #:
  528.  
  529. How did you hear about us (name of person who referred you or the area of
  530. the internet that you saw us mentioned in):  Referral by:  John Chen.
  531. 040896-l-ifo
  532.  
  533. Name of USA mags you currently get on the newsstand or in the store:
  534.  
  535. Name of USA mags you currently get on the newsstand or in the store:
  536.  
  537. Name of USA mags you currently get on a subscription basis, through the mail:
  538.  
  539. Name of USA mags you would like price quotes on when we call you:
  540.  
  541. Catalogue format desired (list "1," "2," "3" or "4"):
  542.  
  543. *------------cut here/end--------------------------------------------*
  544.  
  545.  
  546. Catalogue Format Options:
  547. 1.  19-Part email- can be read by EVERYONE (~525 K Total).
  548. 2.  For more advanced computer users:  attached text file ~525K - you
  549.      must know how to download an attached text file and then be able to
  550.      open it with your word processor.  If in doubt, don't ask for this
  551.      version.  This isn't for internet *newbies.* Better to order option 1
  552.      and spend a few minutes pasting them into one whole text document
  553.      with your word processor, than to waste hours trying to figure how
  554.      to deal with this option.
  555. 3.  For more advanced Macintosh computer users: compressed attached
  556.      text file, created with a Stuffit(tm) self-extracting archive (.sea),
  557.       ~133K.  Can be decompressed by any Macintosh computer user; no
  558.      special expansion software or knowledge of Stuffit (tm) needed.  You
  559.      just double-click on the file icon and it automatically expands
  560.      (unstuffs). This is for more advanced mac computer users only, as 
  561.      you still have to know how to deal with an attached file.  It will cut 
  562.      your download time by 75%.   Expands out to the same ~525K file in 
  563.      option #2.  See option #2 for more info on what you will need to be 
  564.      able to do.
  565. 4.  For expert computer users: compressed attached text file, created with
  566.      Stuffit(tm),  ~114K.  Can be decompressed by any computer user who
  567.      has expansion software to decompress (expand) Stuffit(tm) (.sit) files.
  568.      This is for more advanced computer users only and will cut your
  569.      download time by 78%.   Expands out to the same ~525K file in option
  570.      #2.  See option #2 for more info on what you will need to be able to do.
  571.  
  572.  
  573.  
  574. Hi fellow 'netters,
  575.  
  576. My name is John Chen and I recently started using a magazine subscription
  577. club in the USA that has a FREE 1 yr. magazine subscription deal with your
  578. first paid order- and I have been very pleased with them.    They have over
  579. 1,500 different USA titles that they can ship to any country on a
  580. subscription basis.   As for computer magazines from the USA, they more of a
  581. selection than I ever knew even existed.  They have magazines for most every
  582. area of interest in their list of 1,500 titles.
  583.  
  584. Within the USA, for their USA members, they are cheaper than all their
  585. competitors and even the publishers themselves.  This is their price
  586. guarantee.
  587.  
  588. Overseas, on the average, they are generally around one-fourth to one-half of
  589. what the newsstands overseas charge locally for USA magazines.  On some
  590. titles they are as little as one-tenth of what the newsstands charge.  They
  591. feel that mgazines should not be a luxury overseas.   In the USA, people buy
  592. magazines and then toss them after reading them for just a few minutes or
  593. hours.  They are so cheap in the USA!   Well, this company would like to make
  594. it the same way for their overseas members.  They are also cheaper than all
  595. their competitors in the USA and overseas, including the publishers
  596. themselves!   This is their price guarantee.  Around one-half their business
  597. comes from overseas, so they are very patient with new members who only speak
  598. limited English as a 2nd language.
  599.  
  600. Their prices are so cheap because they deal direct with each publisher and
  601. cut-out all the middlemen.
  602.  
  603. They will send you their DELUXE EMAIL CATALOGUE (around 525K-big and juicey)
  604. !)...if you completely fill out the form above.  It has lists of all the
  605. freebies, lists of all the titles they sell, titles broken down by categories
  606. and detailed descriptions on nearly 1,200 of the titles that they sell.
  607.  
  608. Please do not email me as I am just a happy customer and a *busy* student.  I
  609. don't have time to even complete my thesis in time, let alone run my
  610. part-time software business!  Please fill out the above form and carefully
  611. follow the intructions above to get it to them via fax or smail.
  612.  
  613. They guarantee to beat all their competitors' prices. Sometimes they are less
  614. than half of the next best deal I have been able to find and other times,
  615. just a little cheaper - but I have never found a lower rate yet.  They
  616. assured me that if I ever do, they will beat it.  
  617.  
  618. They have been very helpful and helped me with all my address changes as I
  619. haved moved from one country to another.
  620.  
  621. They have a deal where you can get a free 1 yr. sub to a new magazine from a
  622. special list of over 295 popular titles published in the USA.   They will
  623. give you this free 1 yr. sub when you place your first paid order with them
  624. to a renewal or new subscription to any of the over 1,500 different popular
  625. USA titles they sell.  
  626.  
  627. They can arrange delivery to virtually any country and I think they have
  628. clients in around 45 or 46 countries now.  Outside the USA there is a charge
  629. for FPH (foreign postage and handling) (on both paid and freebie subs) that
  630. varies from magazine to magazine.  I have found their staff to be very
  631. friendly and courteous.  They even helped me with an address change when I
  632. moved from one country to another.
  633.  
  634. The owner thinks of his service as a "club" and his clients as "members"
  635. (even though there is no extra fee to become a member - your first purchase
  636. automatically makes you a member) and he is real picky about who he accepts
  637. as a new member.   When he sets you up as a new member, he himself calls you
  638. personally on the phone to explain how he works his deal, or sometimes he has
  639. one of his assistants call.  He is kind of quirky sometimes - he insists on
  640. setting up new members by phone so he can say hi to everyone (I sure wouldn't
  641. want to have his phone bills!),  but you can place future orders (after your
  642. first order) via E-mail.   
  643.  
  644. He has some really friendly young ladies working for him, who seem to know
  645. just as much as he does about this magazine stuff.  If you live overseas, he
  646. will even call you there, as long as you are interested, but I think he still
  647. makes all his overseas calls on the weekends, I guess cause the long distance
  648. rates are cheaper then.  
  649.  
  650. He only likes to take new members from referrals from satisfied existing
  651. members and he does virtually no advertising.  When I got set-up, they had a
  652. 2-3 week waiting list for new members to be called back so that they could
  653. join up. (Once you are an existing member, they help you immediately when you
  654. call. )  I think they are able to get back to prospective new members  the
  655. same day or within a few days now, as they have increased their staff.  I am
  656. not sure about this.........but if you email the above form to them, that is
  657. the way to get started!
  658.  
  659. They will send you their DELUXE EMAIL CATALOGUE (around 525K-big and juicey)
  660. !)...if you completely fill out the form above.  It has lists of all the
  661. freebies, lists of all the titles they sell, titles broken down by categories
  662. and detailed descriptions on nearly 1,200 of the titles that they sell.
  663.  
  664. They then send you email  that outlines how his club works and the list of
  665. free choices that you can choose from, as well as the entire list of what he
  666. sells;  and then they will give you a quick (3-5 minute) friendly,
  667. no-pressure no-obligation call to explain everything to you personally and
  668. answer all your questions.
  669.  
  670. Once you get in, you'll love them. I do.
  671.  
  672.  
  673. Sincerely,
  674.  
  675. John Chen
  676.  
  677.  
  678.  
  679.  
  680. >From tkindle@siu.edu Mon Apr  8 09:23:49 PDT 1996
  681. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id JAA25433 for <think-c@rdatasys.com>; Mon, 8 Apr 1996 09:23:44 -0700 (PDT)
  682. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id JAA08993 for <think-c@rdatasys.com>; Mon, 8 Apr 1996 09:23:40 -0700
  683. Received: from saluki-mail.fiber2.siu.edu(131.230.252.2) by lionfish.rdatasys.com via smap (V1.3)
  684.         id sma008957; Mon Apr  8 09:23:19 1996
  685. Received: from newport.somcau.siu.edu by saluki-mail.fiber2.siu.edu (AIX 3.2/UCB 5.64/4.03)
  686.           id AA36392; Mon, 8 Apr 1996 11:21:11 -0500
  687. X-Sender: tkindle@saluki-mail.siu.edu
  688. Message-Id: <v02140b01ad8eec137d18@[131.230.42.22]>
  689. Return-Receipt-To: <tkindle@siu.edu>
  690. Mime-Version: 1.0
  691. Content-Type: text/plain; charset="us-ascii"
  692. X-Priority: 1 (Highest)
  693. Date: Mon, 8 Apr 1996 11:23:13 -0500
  694. To: think-c@rdatasys.com
  695. From: tkindle@siu.edu (Tom Kindle)
  696. Subject: Magazine Offer -- StopIt !!!!!!!!!!!
  697.  
  698. Please put a stop to all offers from the Magazine Club Inquiry Center out
  699. of the Staten Island area!  Note that the users posting this junk do not
  700. have a valid IP address.  If you can not stop the junk mail, please remove
  701. from this mailing list.
  702.  
  703. Thanks,
  704. Tom
  705.  
  706. Tom Kindle
  707. Southern Illinois University
  708. School of Medicine
  709. Lindegren Hall
  710. Carbondale, Illinois  62901-6503
  711.  
  712. email: tkindle@siu.edu
  713. fax: 618-453-3144
  714. telephone: 618-453-1685
  715.  
  716.  
  717. >From Lorenzo_Thurman@tetrapak.com Mon Apr  8 12:33:58 PDT 1996
  718. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id MAA07700 for <think-c@rdatasys.com>; Mon, 8 Apr 1996 12:33:57 -0700 (PDT)
  719. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id MAA16715 for <think-c@rdatasys.com>; Mon, 8 Apr 1996 12:33:56 -0700
  720. Received: from guardian.holonet.net(198.207.169.11) by lionfish.rdatasys.com via smap (V1.3)
  721.         id sma016713; Mon Apr  8 12:33:25 1996
  722. Received: from tetrapak (root@localhost) by holonet.net with UUCP
  723.         id MAA18952; Mon, 8 Apr 1996 12:33:19 -0700
  724. Date: Mon,  8 Apr 96 13:30:24 CST
  725. Subject: CTB and scroll bars
  726. Message-ID: <00000085.qm@tetrapak.com>
  727. From: Lorenzo_Thurman@tetrapak.com (Lorenzo Thurman)
  728. To: think-c@rdatasys.com (think-c)
  729. Organization: Tetra Pak, Inc.
  730. X-HoloGate: 1.1.7
  731. Lines: 5696
  732.  
  733.                                           CTB and scroll bars
  734.                                           1:26 PM             4/8/96
  735. I have been writing a terminal program that uses the CTB and can't get the
  736. scroll bars functioning properly. Part of my confusion stems from the fact that
  737. I am not sure whether the Terminal manager or the Window manager handles them.
  738. Any assistance and/or sample code would be greatly appreciated.
  739.  
  740. >From nagel@intelenet.net Tue Apr  9 09:29:49 PDT 1996
  741. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id JAA22087 for <think-c@rdatasys.com>; Tue, 9 Apr 1996 09:29:48 -0700 (PDT)
  742. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id JAA27883 for <think-c@rdatasys.com>; Tue, 9 Apr 1996 09:29:47 -0700
  743. Received: from nikita.intelenet.com(204.182.160.1) by lionfish.rdatasys.com via smap (V1.3)
  744.         id sma027881; Tue Apr  9 09:29:30 1996
  745. Received: from intelenet.net (boris.intelenet.net [206.82.218.11]) by nikita.intelenet.net (8.7.3/8.7.3) with ESMTP id JAA17877 for <think-c@rdatasys.com>; Tue, 9 Apr 1996 09:29:07 -0700 (PDT)
  746. To: think-c@rdatasys.com
  747. Subject: Re: Magazine Offer -- StopIt !!!!!!!!!!! 
  748. Reply-To: nagel@intelenet.net
  749. X-Organization: InteleNet Communications
  750. X-URL: http://www.intelenet.net
  751. X-Phone: (714) 851-8250
  752. In-reply-to: Tom Kindle's message of Mon, 08 Apr 1996 09:29:44 PDT.
  753.         <v02140b01ad8eec137d18@[131.230.42.22]> 
  754. Date: Tue, 09 Apr 1996 09:35:27 PDT
  755. Message-ID: <8952.829067727@intelenet.net>
  756. From: "Mark D. Nagel" <nagel@intelenet.net>
  757.  
  758. On Mon, 08 Apr 1996 09:29:44 PDT Tom Kindle wrote:
  759.  
  760.     Please put a stop to all offers from the Magazine Club Inquiry Center out
  761.     of the Staten Island area!  Note that the users posting this junk do not
  762.     have a valid IP address.  If you can not stop the junk mail, please remove
  763.     from this mailing list.
  764.     
  765. As was recently mentioned, I can not easily stop a class of messages
  766. from appearing on the list.  Clearly, the senders are intent on
  767. spamming from lots of different invalid addresses.  I will examine the
  768. logs to attempt to find the true source and lean on their ISP to kick
  769. them off.  If I find the ISP, I will let you all know so you can also
  770. apply pressure as you see fit.  There is little I can do technically,
  771. though.  This is a social problem.
  772.  
  773. Mark
  774. >From nagel@intelenet.net Tue Apr  9 09:43:21 PDT 1996
  775. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id JAA23089 for <think-c@rdatasys.com>; Tue, 9 Apr 1996 09:43:20 -0700 (PDT)
  776. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id JAA28318 for <think-c@rdatasys.com>; Tue, 9 Apr 1996 09:43:18 -0700
  777. Received: from nikita.intelenet.com(204.182.160.1) by lionfish.rdatasys.com via smap (V1.3)
  778.         id sma028310; Tue Apr  9 09:43:04 1996
  779. Received: from intelenet.net (boris.intelenet.net [206.82.218.11]) by nikita.intelenet.net (8.7.3/8.7.3) with ESMTP id JAA18281 for <think-c@rdatasys.com>; Tue, 9 Apr 1996 09:42:43 -0700 (PDT)
  780. To: think-c@rdatasys.com
  781. Subject: followup on spam
  782. Reply-To: nagel@intelenet.net
  783. X-Organization: InteleNet Communications
  784. X-URL: http://www.intelenet.net
  785. X-Phone: (714) 851-8250
  786. Date: Tue, 09 Apr 1996 09:49:03 PDT
  787. Message-ID: <9170.829068543@intelenet.net>
  788. From: "Mark D. Nagel" <nagel@intelenet.net>
  789.  
  790. Apparently, the last two messages were injected at netcom and AOL,
  791. respectively.  There is no evidence to suggest that the senders are
  792. actually from either of these sites.  I will try my best to formulate
  793. some plan to silently reject these messages...
  794.  
  795. Mark
  796. >From JeffC@cc.snow.edu Tue Apr  9 10:14:49 PDT 1996
  797. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id KAA25292 for <think-c@rdatasys.com>; Tue, 9 Apr 1996 10:14:49 -0700 (PDT)
  798. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id KAA29923 for <think-c@rdatasys.com>; Tue, 9 Apr 1996 10:14:48 -0700
  799. Received: from cc1.snow.edu(144.17.1.3) by lionfish.rdatasys.com via smap (V1.3)
  800.         id sma029921; Tue Apr  9 10:14:27 1996
  801. Received: from [144.17.30.135] by 144.17.30.135 with SMTP;
  802.           Tue, 9 Apr 1996 11:13:36 -0600 (MDT)
  803. X-Sender: JeffC@144.17.1.2
  804. Message-Id: <v01540b00ad90592e80f5@[144.17.30.135]>
  805. Mime-Version: 1.0
  806. Content-Type: text/plain; charset="us-ascii"
  807. Date: Tue, 9 Apr 1996 11:14:22 -0700
  808. To: think-c@rdatasys.com
  809. From: JeffC@cc.snow.edu (Jeff Carney)
  810. Subject: Re: Magazine Offer -- StopIt !!!!!!!!!!!
  811.  
  812. I'd like to take a moment to thank Mark for putting up with the spammers
  813. and the complainers.  It's not easy moderating a list.
  814.  
  815.  
  816. >From crunch@well.com Thu Apr 11 18:39:29 PDT 1996
  817. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id SAA24506 for <think-c@rdatasys.com>; Thu, 11 Apr 1996 18:39:28 -0700 (PDT)
  818. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id SAA05270 for <think-c@rdatasys.com>; Thu, 11 Apr 1996 18:39:27 -0700
  819. Received: from mh1.well.com(206.15.64.22) by lionfish.rdatasys.com via smap (V1.3)
  820.         id sma005259; Thu Apr 11 18:38:57 1996
  821. Received: from [153.36.85.85] (Cust21.Max6.Santa-Clara.CA.MS.UU.NET [153.36.85.85]) by mh1.well.com (8.6.12/8.6.12) with SMTP id SAA23312 for <think-c@rdatasys.com>; Thu, 11 Apr 1996 18:38:41 -0700
  822. Message-Id: <199604120138.SAA23312@mh1.well.com>
  823. X-Sender: crunch@mail.well.com
  824. Mime-Version: 1.0
  825. Content-Type: text/plain; charset="us-ascii"
  826. Date: Thu, 11 Apr 1996 18:39:43 +1000
  827. To: think-c@rdatasys.com
  828. From: crunch@well.com (John Draper)
  829. Subject: How do I covert Think C library into .o files
  830.  
  831. Hi...  Is it possible to convert a think C Library into a .o file
  832. that can be used to link into an MPW program?
  833.  
  834. I know there is a .o converter translator in my Think C 7.0 development
  835. system,  but I am clueless as to how to use it.    Has anyone got any
  836. experience on how to us this?    What is a translator?   Please
  837. understand that I'm not that adept at this and need step by step
  838. instructions on how to convert a Think C library into a .o file...
  839.  
  840. Now I understand fully why Apple Computer is about to go "belly up",
  841. SHIT!!  Nobody wants to have to put up with this shit when developing
  842. Macintosh applications.   This is really fucked.
  843.  
  844. Crunchman
  845.  
  846.  
  847. >From aland@cs.brandeis.edu Fri Apr 12 06:34:08 PDT 1996
  848. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id GAA06278 for <think-c@rdatasys.com>; Fri, 12 Apr 1996 06:34:07 -0700 (PDT)
  849. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id GAA26956 for <think-c@rdatasys.com>; Fri, 12 Apr 1996 06:34:05 -0700
  850. Received: from berry.cs.brandeis.edu(129.64.2.5) by lionfish.rdatasys.com via smap (V1.3)
  851.         id sma026946; Fri Apr 12 06:33:45 1996
  852. Received: from zircon.cs.brandeis.edu by cs.brandeis.edu Fri, 12 Apr 1996 09:33:46 -0400
  853. Received: (from aland@localhost) by zircon.cs.brandeis.edu (951211.SGI.8.6.12.PATCH1042/8.6.9) id JAA17232; Fri, 12 Apr 1996 09:33:40 -0400
  854. From: "Alan D. Danziger" <aland@cs.brandeis.edu>
  855. Message-Id: <199604121333.JAA17232@zircon.cs.brandeis.edu>
  856. Subject: Re: How do I covert Think C library into .o files
  857. To: crunch@well.com
  858. Date: Fri, 12 Apr 1996 09:33:40 -0400 (EDT)
  859. Cc: think-c@rdatasys.com
  860. Reply-To: aland@cs.brandeis.edu
  861. In-Reply-To: <199604120138.SAA23312@mh1.well.com> from "John Draper" at Apr 11, 96 06:51:11 pm
  862. X-Mailer: ELM [version 2.4 PL24 PGP2]
  863. MIME-Version: 1.0
  864. Content-Type: text/plain; charset=US-ASCII
  865. Content-Transfer-Encoding: 7bit
  866.  
  867. To quote John Draper,
  868.  
  869. > Hi...  Is it possible to convert a think C Library into a .o file
  870. > that can be used to link into an MPW program?
  871.  
  872. Yes, or at least it was with TC 7.x; I don't know about 8.x.
  873.  
  874. > I know there is a .o converter translator in my Think C 7.0 development
  875. > system,  but I am clueless as to how to use it.    Has anyone got any
  876. > experience on how to us this?    What is a translator?   Please
  877. > understand that I'm not that adept at this and need step by step
  878. > instructions on how to convert a Think C library into a .o file...
  879.  
  880. Read the Think C Manuals?
  881.  
  882. > Now I understand fully why Apple Computer is about to go "belly up",
  883. [expletives expunged]
  884.  
  885. Perhaps you could explain how a third party product--Think C 7.0--is
  886. related to the media hype about Apple's problems?  The problem you
  887. have run into--albeit a real problem--is not Apple's problem, it's
  888. Symantec's.  It is also a problem for which they provide a solution.
  889.  
  890.         -=Alan
  891. >From ken.brockman@jhuapl.edu Fri Apr 12 10:26:07 PDT 1996
  892. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id KAA20687 for <think-c@rdatasys.com>; Fri, 12 Apr 1996 10:26:06 -0700 (PDT)
  893. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id KAA06238 for <think-c@rdatasys.com>; Fri, 12 Apr 1996 10:26:04 -0700
  894. Received: from mailer.jhuapl.edu(128.244.198.31) by lionfish.rdatasys.com via smap (V1.3)
  895.         id sma006234; Fri Apr 12 10:25:19 1996
  896. Received: from aplcomm.jhuapl.edu by mailer.jhuapl.edu (5.65/DEC-Ultrix/4.3)
  897.         id AA03604; Fri, 12 Apr 1996 13:15:29 -0400
  898. Received: from [128.244.71.183] (brockman-kd.jhuapl.edu) by aplcomm.jhuapl.edu (5.0/SMI-SVR4)
  899.         id AA18952; Fri, 12 Apr 1996 13:15:27 -0400
  900. X-Sender: brockman@aplcomm.jhuapl.edu
  901. Message-Id: <v02140b00ad943f5f374e@[128.244.71.183]>
  902. Mime-Version: 1.0
  903. Content-Type: text/plain; charset="us-ascii"
  904. Date: Fri, 12 Apr 1996 13:15:28 -0400
  905. To: aland@cs.brandeis.edu
  906. From: ken.brockman@jhuapl.edu (Ken Brockman)
  907. Subject: Re: How do I covert Think C library into .o files
  908. Cc: think-c@rdatasys.com
  909.  
  910.  
  911. >
  912. >Perhaps you could explain how a third party product--Think C 7.0--is
  913. >related to the media hype about Apple's problems?  The problem you
  914. >have run into--albeit a real problem--is not Apple's problem, it's
  915. >Symantec's.  It is also a problem for which they provide a solution.
  916. >
  917.  
  918.  
  919. That is true, but if the perception is that the third party solutions
  920. available for the Mac don't work, then it is, in a round about way, Apple's
  921. problem too.
  922.  
  923. Of course it never helps to have people spout off about things when the
  924. real problem is their own.
  925.  
  926. ken
  927.  
  928.  
  929. >From Lorenzo_Thurman@tetrapak.com Mon Apr 22 07:31:56 PDT 1996
  930. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id HAA22369 for <think-c@rdatasys.com>; Mon, 22 Apr 1996 07:31:55 -0700 (PDT)
  931. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id HAA25469 for <think-c@rdatasys.com>; Mon, 22 Apr 1996 07:31:53 -0700
  932. Received: from guardian.holonet.net(198.207.169.11) by lionfish.rdatasys.com via smap (V1.3)
  933.         id sma025420; Mon Apr 22 07:31:24 1996
  934. Received: from tetrapak (root@localhost) by holonet.net with UUCP
  935.         id HAA27773; Mon, 22 Apr 1996 07:09:35 -0700
  936. Date: Mon, 22 Apr 96 08:10:00 CST
  937. Subject: FWD>PowerPC News ; Vol. 3, 
  938. Message-ID: <00000113.qm@tetrapak.com>
  939. From: Lorenzo_Thurman@tetrapak.com (Lorenzo Thurman)
  940. To: Lorenzo_Thurman@tetrapak.com (Lorenzo Thurman)
  941. Organization: Tetra Pak, Inc.
  942. X-HoloGate: 1.1.7
  943. Lines: 9479
  944.  
  945. FWD>PowerPC News ; Vol. 3, No.I
  946. ============================<<<POWERPC NEWS>>>==========================
  947.               The Electronic News Magazine for the Internet
  948.       Web server at http://www.computerwire.com/powerpc/
  949.                   ***April 11th 1996: Vol. 3, No.48***
  950.                             circulation: 80,000
  951.  
  952. =====================================================================
  953.         For full text of stories mail:news@aptdata.co.uk
  954.    COMPLETE DETAILS ON RETRIEVING FULL TEXT OF ITEMS IN POWERPC NEWS
  955.                        ARE AT THE END OF THIS ISSUE
  956. =======================================================================
  957.  
  958.  _____________________ COMMERCIAL ANNOUNCEMENTS _____________________
  959. |                                                                     |
  960. | 4991) JAM7 from JYACC - a graphical Client/Server tool              |
  961. |_____________________________________________________________________|
  962.  
  963.  
  964. =====================================================================
  965.         For full text of stories mail:news@aptdata.co.uk
  966.    COMPLETE DETAILS ON RETRIEVING FULL TEXT OF ITEMS IN POWERPC NEWS
  967.                        ARE AT THE END OF THIS ISSUE
  968. =======================================================================
  969.    
  970. ==== POWERPC NEWS: (use story no. 1999 to retrieve whole section) =====
  971.  
  972. 1506) AMIGA TECHNOLOGIES TO BE SOLD TO VISCORP    
  973. Financially embarrassed Escom is set to sell Amiga Technologies to
  974. VISCorp. The Chicago-based interactive TV specialist says it plans to
  975. maintain Amiga development.
  976.  
  977. 1507) Bull gets its 620 samples - is broadly happy
  978. 1508) Motorola Vecomp combines PowerPC with vector processor topping
  979. 1509) IBM preparing to take Mac OS, but Compaq ain't
  980. 1510) Motorola and Apple outline plans for China
  981. 1511) Motorola Computer Group to accelerate NT app development
  982. 1512) Symantec C++ for Power Mac now has Java, Pascal and 68k support
  983. 1513) General Automation desktop boxes, bought from Bull, built by Moto
  984.  
  985. ===== COMPUTERWIRE:(use story no. 2999 to retrieve whole section) =====
  986. 2388) Advanced RISC Machines and friends outline their ARM plans
  987. 2389) Advanced Micro Devices uses its Am386 core in $25 AT-on-a-chip
  988. 2390) Microsoft adds Aha! Software to its growing collection
  989. 2391) Tera to launch multi-threaded supercomputer soon
  990. 2392) Apple sells its Fountain factory to SCI systems
  991. 2393) Northern Telecom stuns Hayes by pulling its offer
  992. 2394) It may be free now, but DEC has big plans to exploit Alta Vista
  993. 2395) Sony sets home computer revolution
  994. 2396) Georgia Tech posits liquid crystal  molecular store
  995.  
  996. ==== POWERPC RESOURCES=================================================
  997.  
  998. 4000) Frequently Asked Questions
  999.    Derek B Noonburg's wide-ranging FAQ list from comp.sys.powerpc
  1000.    last updated March 25th ** 
  1001.  
  1002. ========================================================================
  1003.           ---  FREE SUBSCRIPTION TO TELECOMS NEWSLINE   ---
  1004.  
  1005. PowerPC News readers can get their FREE subscription to TELECOMS
  1006. NEWSLINE by mailing: 
  1007.                   mailme@aptdata.co.uk (no message required).
  1008.  
  1009.  
  1010. ======= COMMERCIAL INFORMATION==========================================
  1011. (*=New this issue, **=Updated or changed copy)
  1012.  
  1013. 4991) JAM7 from JYACC - a graphical Client/Server tool
  1014.       for PowerPC. Free demo kit for Mac or Windows.
  1015. 4990) Open Microsystems DistribuTAPE - transparent access to
  1016.       remote tape drives
  1017. 4997) Motorola PowerPC Microprocessors
  1018. 4999) Power Micro Research - PowerPC hardware & software engineering
  1019.       services
  1020. 6003) IBM System User International now available free, by e-mail
  1021. 6004) Unix News International available free, by e-mail
  1022. 6006) DOOM II:Hell On Earth-For Mac. Available for direct download NOW!
  1023. 6008) New Wave of Embedded and Real Time Solutions 
  1024.  
  1025.  
  1026. INFORMATION ABOUT FREE TRIALS TO LEADING PUBLICATIONS
  1027. 5000) Computergram international - the world's leading computer daily
  1028. 5001) Unigram/X - the weekly newsletter for the Unix community
  1029. 5002) Network Week - the weekly datacoms and telecoms bulletin
  1030. 5003) Computer Finance - analysing the real cost of computing
  1031. 5004) Software Futures - exploring software development
  1032. 5005) Computer Business Review - the global business analysis title
  1033. 5006) ClieNT Server News - the newspaper for Windows NT watchers
  1034. 5020) IBM System User - the UK'S leading IBM magazine
  1035. 5030) Unix News - the UK'S leading Unix magazine
  1036. 5032) Webster - a twice monthly e-zine covering the World Wide Web
  1037.                          -o-
  1038.  
  1039. SPECIAL REPORTS/PUBLICATIONS/SEMINARS AVAILABLE
  1040. FROM APT DATA Services Plc
  1041. 5100) Individual reports on the Economics of: Software Projects,
  1042.       Client Server Computing, PC Networking, and Outsourcing.
  1043. 5150) The Computer Industry Guide - guide to leading computer companies
  1044. 5151) Computer Industry lists - UK AS400, RS6000, Mainframe and Unix
  1045.  
  1046. FROM MALOFF & ASSOCIATES
  1047. 5120) 1993-'94 Internet Service Provider Marketplace Report
  1048.  
  1049. FROM INPUT, INC.
  1050. 5130) Object-oriented platforms for client/server computing
  1051.                                  -o-
  1052. POWERPC NEWS
  1053. 7000) How to publish your information in this section of PowerPC News
  1054. 7001) PowerPC News who are we? How are we funded?
  1055. 7002) PowerPC News now available on world wide web
  1056. 7003) FREE listings in on-line PowerPC Resource Guide
  1057.  
  1058. COMPUTER BOOKSTORE
  1059. 8500) Introduction
  1060. 8501) Extract from 'THE WHOLE INTERNET USERS GUIDE & CATALOG'
  1061. 8502) Information on selected additional computer titles
  1062. 8504) Extract from 'INSIDE THE POWERPC REVOLUTION'
  1063. 8505) Extract from 'ZEN OF CODE OPTIMIZATION'
  1064. 8506) Extract from 'WRITING FCODE PROGRAMS FOR PCI'
  1065.  
  1066. * COMPUTER JOBS * COMPUTER JOBS * COMPUTER JOBS * COMPUTER JOBS *
  1067. 9000) Publishing job announcements in PowerPC News
  1068. 9001) Positions available - NEW vacancies in this issue*
  1069.  
  1070. --------Administrivia-------------------------------------------------
  1071. TO RETRIEVE FULL TEXT OF ITEMS IN POWERPC NEWS
  1072. Send an e-mail message to  news@aptdata.co.uk
  1073.      Place in the SUBJECT of your message the item numbers of the items
  1074.      you wish to receive. For example:
  1075.             To: news@aptdata.co.uk
  1076.        Subject: 1000 1008 3000
  1077.             Your e-mail address will be picked up automatically.
  1078.  
  1079. TO GET A BACK-ISSUE INDEX, SELECT STORY 6500
  1080. TO SUBSCRIBE TO POWERPC NEWS - mail add@aptdata.co.uk
  1081. TO UNSUBSCRIBE               - mail remove@aptdata.co.uk
  1082.             *** ANY TEXT IN THE MESSAGE IS IGNORED ***
  1083.  
  1084. MAIL PROBLEMS?: If you are having any problems retrieving stories or
  1085. removing yourself from the list please:
  1086.   mail human@aptdata.co.uk
  1087. EDITORIAL COMMENTS or questions:
  1088.   mail chrisr@aptdata.co.uk
  1089. TO FIND OUT ABOUT ADVERTISING in PowerPC News
  1090.   mail julian@computerwire.com
  1091. -----------------------------------------------------------------------
  1092. Copyright 1996 PowerPC News. This publication is free for the Internet
  1093. community and may be reposted without restriction.
  1094.  
  1095.  
  1096.  
  1097.  
  1098.  
  1099.  
  1100.  
  1101.  
  1102.  
  1103. ----Internet Header Follows----
  1104. Received: from apt (apt.usa.globalnews.com [204.254.77.2]) by
  1105. altmail.holonet.net with SMTP   id VAA00885; Sun, 21 Apr 1996 21:57:38 -0700
  1106. Received: by apt (5.x/SMI-SVR4) id AA21834; Mon, 22 Apr 1996 00:52:48 -0400
  1107. Date: Mon, 22 Apr 1996 00:52:48 -0400
  1108. From: automail@aptdata.co.uk
  1109.  
  1110. Message-Id: <9604220452.AA21834@apt>
  1111. To: lorenzo_thurman@tetrapak.com
  1112. Subject: PowerPC News ; Vol. 3, No.48 April 11th 1996
  1113. Reply-To: news@aptdata.co.uk
  1114.  
  1115.  
  1116. >From Lewisarons@aol.com Thu Apr 25 19:01:45 PDT 1996
  1117. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id TAA04668 for <think-c@rdatasys.com>; Thu, 25 Apr 1996 19:01:39 -0700 (PDT)
  1118. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id TAA03617 for <think-c@rdatasys.com>; Thu, 25 Apr 1996 19:01:37 -0700
  1119. Received: from ics.uci.edu(128.195.1.1) by lionfish.rdatasys.com via smap (V1.3)
  1120.         id sma003613; Thu Apr 25 19:01:28 1996
  1121. Received: from emout15.mx.aol.com by q2.ics.uci.edu id aa07709;
  1122.           25 Apr 96 19:01 PDT
  1123. Received: by emout15.mail.aol.com (8.6.12/8.6.12) id VAA25274; Thu, 25 Apr 1996 21:12:47 -0400
  1124. Date: Thu, 25 Apr 1996 21:12:47 -0400
  1125. From: Lewisarons@aol.com
  1126. Message-ID: <960425211247_382941487@emout15.mail.aol.com>
  1127. To: internet.announcement.service@r1.f64.n8769.z303.fidonet.org
  1128. Subject: Fantastic Free Offer I found on the net
  1129.  
  1130.  
  1131. ---------------------
  1132. Forwarded message:
  1133. Subj:    Fantastic Free Offer I found on the net
  1134. Date:    96-04-25 18:48:53 EDT
  1135. From:    Lewisarons
  1136. To:      Lewisarons
  1137.  
  1138. To: internet.announcement.service@r1.f64.n8769.z303.fidonet.org
  1139.  
  1140. -----> NOTE:   Please first read my note which appears below the "Request for
  1141. more info Form."  Then, to get more info, just fill out the "Request for More
  1142. Info" form completely and *FAX* or *SMAIL* it back to the company.  You will
  1143. get a quick reply via email within 1 business day of receipt of the info
  1144. request form below. 
  1145.  
  1146. IMPORTANT NOTICE FOR THOSE FAXING IN THEIR REPLY:  Please make sure you
  1147. return *only* the below form and *no part* of this message other than the
  1148. actual form below.  If you do not know how to cut and paste the below form
  1149. onto a fresh clean blank page for faxing, then you may re-type the below
  1150. form, as long as you copy it line for line *exactly.*  This is necessary in
  1151. order for them to be able to process the tremendous number of replies that
  1152. they get daily.
  1153.  
  1154. Your fax goes directly onto their 4.2 gigabyte computer hard drive, not
  1155. paper, and all incoming fax calls are set-up to be *auto-terminated* and/or
  1156. *auto-deleted* from the incoming queue of faxes to be read, if your fax:
  1157.  
  1158. 1. has a cover page;  
  1159. 2. is more than one page
  1160. 3. is sent more than one time
  1161. 4. does not begin with the "cut here/begin" line from the below form
  1162. 5. does not end with the "cut here/end" line from the below form.
  1163. 6. has any handwritten info. on it (info must must be filled out *only* 
  1164.     with your computer keyboard or typewriter keyboard).  This last 
  1165.     provision re:  no handwriting on the form applies to requests sent in 
  1166.     via smail also.
  1167.  
  1168. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1169. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1170. NOTE:  Their fax line is open 24 hrs. per day / 7 days per week.   However,
  1171.  if you have trouble getting through due to the high volume of overseas faxes
  1172. coming in during the early morning and late night hours, please note that the
  1173. best time to get through to their fax is Monday-Friday, 9 am - 5 pm EST (New
  1174. York Time).  If you have trouble getting through to their fax, or do not have
  1175. a fax machine at work or at home, just drop the below form to them via smail
  1176. (airmail or first class mail).
  1177. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1178. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  1179.  
  1180.  
  1181.  
  1182. *------------cut here/begin-------------------------------------------*
  1183. REQUEST FOR MORE INFO:  please return *only* this section (with no cover
  1184. page) via 1-page fax to:
  1185.                               718-967-1550 in the USA
  1186.  
  1187. or via smail (first class mail or airmail) to:    
  1188.                                          Magazine Club Inquiry Center
  1189.                                          Att. FREE Catalogue-by-email Dept.
  1190.                                          PO Box 990
  1191.                                          Staten Island NY  10312-0990
  1192.  
  1193. Sorry, but incomplete forms *will not* be acknowledged.  If you do not
  1194. have an email address, or access to one, they will not be able to help you
  1195. until you do have one.  If you saw this message, then you should have one.
  1196.  :)
  1197.  
  1198. ---> SORRY, BUT NO HANDWRITTEN FORMS WILL BE ACKNOWLEDGED.  
  1199.         MUST BE TYPED-OUT ON YOUR COMPUTER OR TYPEWRITER. <---
  1200.  
  1201. Name:
  1202. Internet email address:
  1203. Smail home address:
  1204. City-State-Zip:
  1205. Country:
  1206. Work Tel. #:
  1207. Work Fax #:
  1208. Home Tel. #:
  1209. Home Fax #:
  1210.  
  1211. How did you hear about us (name of person who referred you or the area of
  1212. the internet that you saw us mentioned in):  Referral by:  Lewis Arons.
  1213. 040896-l-ifo
  1214.  
  1215. Name of USA mags you currently get on the newsstand or in the store:
  1216.  
  1217. Name of USA mags you currently get on the newsstand or in the store:
  1218.  
  1219. Name of USA mags you currently get on a subscription basis, through the mail:
  1220.  
  1221. Name of USA mags you would like price quotes on when we call you:
  1222.  
  1223. Catalogue format desired (list "1," "2," "3" or "4"):
  1224.  
  1225. *------------cut here/end--------------------------------------------*
  1226.  
  1227.  
  1228. Catalogue Format Options:
  1229. 1.  19-Part email- can be read by EVERYONE (~525 K Total).
  1230. 2.  For more advanced computer users:  attached text file ~525K - you
  1231.      must know how to download an attached text file and then be able to
  1232.      open it with your word processor.  If in doubt, don't ask for this
  1233.      version.  This isn't for internet *newbies.* Better to order option 1
  1234.      and spend a few minutes pasting them into one whole text document
  1235.      with your word processor, than to waste hours trying to figure how
  1236.      to deal with this option.
  1237. 3.  For more advanced Macintosh computer users: compressed attached
  1238.      text file, created with a Stuffit(tm) self-extracting archive (.sea),
  1239.       ~133K.  Can be decompressed by any Macintosh computer user; no
  1240.      special expansion software or knowledge of Stuffit (tm) needed.  You
  1241.      just double-click on the file icon and it automatically expands
  1242.      (unstuffs). This is for more advanced mac computer users only, as 
  1243.      you still have to know how to deal with an attached file.  It will cut 
  1244.      your download time by 75%.   Expands out to the same ~525K file in 
  1245.      option #2.  See option #2 for more info on what you will need to be 
  1246.      able to do.
  1247. 4.  For expert computer users: compressed attached text file, created with
  1248.      Stuffit(tm),  ~114K.  Can be decompressed by any computer user who
  1249.      has expansion software to decompress (expand) Stuffit(tm) (.sit) files.
  1250.      This is for more advanced computer users only and will cut your
  1251.      download time by 78%.   Expands out to the same ~525K file in option
  1252.      #2.  See option #2 for more info on what you will need to be able to do.
  1253.  
  1254.  
  1255.  
  1256. Hi fellow 'netters,
  1257.  
  1258. My name is Lewis Arons and I recently started using a magazine subscription
  1259. club in the USA that has a FREE 1 yr. magazine subscription deal with your
  1260. first paid order- and I have been very pleased with them.    They have over
  1261. 1,500 different USA titles that they can ship to any country on a
  1262. subscription basis.   As for computer magazines from the USA, they more of a
  1263. selection than I ever knew even existed.  They have magazines for most every
  1264. area of interest in their list of 1,500 titles.
  1265.  
  1266. Within the USA, for their USA members, they are cheaper than all their
  1267. competitors and even the publishers themselves.  This is their price
  1268. guarantee.
  1269.  
  1270. Overseas, on the average, they are generally around one-fourth to one-half of
  1271. what the newsstands overseas charge locally for USA magazines.  On some
  1272. titles they are as little as one-tenth of what the newsstands charge.  They
  1273. feel that mgazines should not be a luxury overseas.   In the USA, people buy
  1274. magazines and then toss them after reading them for just a few minutes or
  1275. hours.  They are so cheap in the USA!   Well, this company would like to make
  1276. it the same way for their overseas members.  They are also cheaper than all
  1277. their competitors in the USA and overseas, including the publishers
  1278. themselves!   This is their price guarantee.  Around one-half their business
  1279. comes from overseas, so they are very patient with new members who only speak
  1280. limited English as a 2nd language.
  1281.  
  1282. Their prices are so cheap because they deal direct with each publisher and
  1283. cut-out all the middlemen.
  1284.  
  1285. They will send you their DELUXE EMAIL CATALOGUE (around 525K-big and juicey)
  1286. !)...if you completely fill out the form above.  It has lists of all the
  1287. freebies, lists of all the titles they sell, titles broken down by categories
  1288. and detailed descriptions on nearly 1,200 of the titles that they sell.
  1289.  
  1290. Please do not email me as I am just a happy customer and a *busy* student.  I
  1291. don't have time to even complete my thesis in time, let alone run my
  1292. part-time software business!  Please fill out the above form and carefully
  1293. follow the intructions above to get it to them via fax or smail.
  1294.  
  1295. They guarantee to beat all their competitors' prices. Sometimes they are less
  1296. than half of the next best deal I have been able to find and other times,
  1297. just a little cheaper - but I have never found a lower rate yet.  They
  1298. assured me that if I ever do, they will beat it.  
  1299.  
  1300. They have been very helpful and helped me with all my address changes as I
  1301. haved moved from one country to another.
  1302.  
  1303. They have a deal where you can get a free 1 yr. sub to a new magazine from a
  1304. special list of over 295 popular titles published in the USA.   They will
  1305. give you this free 1 yr. sub when you place your first paid order with them
  1306. to a renewal or new subscription to any of the over 1,500 different popular
  1307. USA titles they sell.  
  1308.  
  1309. They can arrange delivery to virtually any country and I think they have
  1310. clients in around 45 or 46 countries now.  Outside the USA there is a charge
  1311. for FPH (foreign postage and handling) (on both paid and freebie subs) that
  1312. varies from magazine to magazine.  I have found their staff to be very
  1313. friendly and courteous.  They even helped me with an address change when I
  1314. moved from one country to another.
  1315.  
  1316. The owner thinks of his service as a "club" and his clients as "members"
  1317. (even though there is no extra fee to become a member - your first purchase
  1318. automatically makes you a member) and he is real picky about who he accepts
  1319. as a new member.   When he sets you up as a new member, he himself calls you
  1320. personally on the phone to explain how he works his deal, or sometimes he has
  1321. one of his assistants call.  He is kind of quirky sometimes - he insists on
  1322. setting up new members by phone so he can say hi to everyone (I sure wouldn't
  1323. want to have his phone bills!),  but you can place future orders (after your
  1324. first order) via E-mail.   
  1325.  
  1326. He has some really friendly young ladies working for him, who seem to know
  1327. just as much as he does about this magazine stuff.  If you live overseas, he
  1328. will even call you there, as long as you are interested, but I think he still
  1329. makes all his overseas calls on the weekends, I guess cause the long distance
  1330. rates are cheaper then.  
  1331.  
  1332. He only likes to take new members from referrals from satisfied existing
  1333. members and he does virtually no advertising.  When I got set-up, they had a
  1334. 2-3 week waiting list for new members to be called back so that they could
  1335. join up. (Once you are an existing member, they help you immediately when you
  1336. call. )  I think they are able to get back to prospective new members  the
  1337. same day or within a few days now, as they have increased their staff.  I am
  1338. not sure about this.........but if you email the above form to them, that is
  1339. the way to get started!
  1340.  
  1341. They will send you their DELUXE EMAIL CATALOGUE (around 525K-big and juicey)
  1342. !)...if you completely fill out the form above.  It has lists of all the
  1343. freebies, lists of all the titles they sell, titles broken down by categories
  1344. and detailed descriptions on nearly 1,200 of the titles that they sell.
  1345.  
  1346. They then send you email  that outlines how his club works and the list of
  1347. free choices that you can choose from, as well as the entire list of what he
  1348. sells;  and then they will give you a quick (3-5 minute) friendly,
  1349. no-pressure no-obligation call to explain everything to you personally and
  1350. answer all your questions.
  1351.  
  1352. Once you get in, you'll love them. I do.
  1353.  
  1354.  
  1355. Sincerely,
  1356.  
  1357. Lewis Arons
  1358.  
  1359.  
  1360.  
  1361. >From owen@ids.net Thu Apr 25 20:24:15 PDT 1996
  1362. Received: from lionfish.rdatasys.com (uucp@lionfish.rdatasys.com [198.232.168.1]) by amberjack.rdatasys.com (8.7.3/8.7.3) with SMTP id UAA09229 for <think-c@rdatasys.com>; Thu, 25 Apr 1996 20:24:14 -0700 (PDT)
  1363. Received: (from uucp@localhost) by lionfish.rdatasys.com (8.6.9/8.6.10) id UAA07644 for <think-c@rdatasys.com>; Thu, 25 Apr 1996 20:24:13 -0700
  1364. Received: from ids.net(155.212.1.2) by lionfish.rdatasys.com via smap (V1.3)
  1365.         id sma007641; Thu Apr 25 20:24:08 1996
  1366. Received: from [155.212.70.119] by 155.212.70.119 with SMTP;
  1367.           Thu, 25 Apr 1996 23:24:06 -0400 (EDT)
  1368. Message-Id: <v02140b01ada5ff878c2c@[155.212.70.119]>
  1369. Mime-Version: 1.0
  1370. Content-Type: text/plain; charset="us-ascii"
  1371. Date: Thu, 25 Apr 1996 23:25:32 -0500
  1372. To: Multiple recipients of list <think-c@rdatasys.com>
  1373. From: owen@ids.net (Owen Hartnett)
  1374. Subject: Re: Fantastic Free Offer I found on the net
  1375.  
  1376. How to stop this jerk?
  1377.  
  1378. Maybe we can fill his fax machine with the tripe he has been sending us?
  1379. Send him tons of blank pages to go through? Is there a local internet fax
  1380. sender to him? Since he left a way to get at him, maybe we should take
  1381. advantage of his "free offer"
  1382.  
  1383. -Owen
  1384.  
  1385. P.S. Boy, does this jerk aggravate me.
  1386.  
  1387.  
  1388.  
  1389. *------------cut here/begin-------------------------------------------*
  1390. REQUEST FOR MORE INFO:  please return *only* this section (with no cover
  1391. page) via 1-page fax to:
  1392.                               718-967-1550 in the USA
  1393.  
  1394. or via smail (first class mail or airmail) to:
  1395.                                          Magazine Club Inquiry Center
  1396.                                          Att. FREE Catalogue-by-email Dept.
  1397.                                          PO Box 990
  1398.                                          Staten Island NY  10312-0990
  1399.  
  1400. Sorry, but incomplete forms *will not* be acknowledged.  If you do not
  1401. have an email address, or access to one, they will not be able to help you
  1402. until you do have one.  If you saw this message, then you should have one.
  1403.  :)
  1404.  
  1405. ---> SORRY, BUT NO HANDWRITTEN FORMS WILL BE ACKNOWLEDGED.
  1406.         MUST BE TYPED-OUT ON YOUR COMPUTER OR TYPEWRITER. <---
  1407.  
  1408. Name: Alfred E. Neuman
  1409. Internet email address: Don't even think of email bombing again
  1410. Smail home address: San Quentin
  1411. City-State-Zip:
  1412. Country:
  1413. Work Tel. #: 1-800-555-1212
  1414. Work Fax #:
  1415. Home Tel. #:
  1416. Home Fax #:
  1417.  
  1418.  
  1419.  
  1420. ------------------------------ Cut here ------------------------------
  1421.